home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- global givState, gSIUserName, givMAINMONITORSPRITE, givWhichText, gSISystem
- if gSISystem = "MAC" then
- set the castNum of sprite givMAINMONITORSPRITE to the number of cast "CreditsBackground"
- else
- set the castNum of sprite givMAINMONITORSPRITE to the number of cast "CreditsBackground.PC"
- end if
- puppetSprite(24, 1)
- puppetSprite(25, 1)
- puppetSprite(26, 1)
- set the textSize of field "enter name" to 12
- set the textSize of field "enter title" to 12
- set the textSize of field "enter location" to 12
- if the userName of givState = EMPTY then
- set the text of field "enter name" to " "
- else
- set the text of field "enter name" to the userName of givState
- end if
- if the userTitle of givState = EMPTY then
- set the text of field "enter title" to "Awesome Athletes"
- else
- set the text of field "enter title" to the userTitle of givState
- end if
- if the userLoc of givState = EMPTY then
- set the text of field "enter location" to " "
- else
- set the text of field "enter location" to the userLoc of givState
- end if
- set givWhichText to 24
- set the editableText of sprite givWhichText to 1
- set the keyDownScript to "CreditsKeyDown"
- end
-